home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / Dave Mark / Learn C++ on the Mac / Chap 02.01 - hello++ / hello++.cp next >
Encoding:
Text File  |  1995-10-20  |  76 b   |  8 lines  |  [TEXT/CWIE]

  1. #include <iostream.h>
  2.  
  3. int    main()
  4. {
  5.     cout << "Hello, world!";
  6.     
  7.     return 0;
  8. }